img.event-img {
    width: 30rem;
    left: 24.5rem;
    position: relative;
}

a#btn-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
a#btn-1:hover {
    background: #fff !important;
    color: #000 !important;
    transition: 0.6s;
}
a#btn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #52aead;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    color:#fff !important;
    cursor: pointer;
}
a#btn-2:hover {
    background: #fff !important;
    color: #000 !important;
    transition: 0.6s;
}
.event-img{
    opacity: 0; 
    animation: fadeIn 1.5s ease-in forwards;
  }
  .content-row{
    opacity: 0; 
    animation: slideInLeft 1s ease-out forwards; 
  }
  .btn-row{
    opacity: 0; 
    animation: slideInLeft 1.5s ease-out forwards; 
  }
  @keyframes fadeIn {
    0% {
      opacity: 0; 
    }
    100% {
      opacity: 1; 
    }
  }
  @keyframes slideInLeft {
    from {
        /* Start completely off-screen to the left and invisible */
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        /* Move to its final natural position and become fully visible */
        transform: translateX(0);
        opacity: 1;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    img.event-img {
        left: 14rem;
    }
    li#SupportedInternshipsListItem a {
        font-size: 14px !important;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
img.event-img {
    width: 30rem;
    left: 4rem;
    position: relative;
}
}

@media (min-width: 376px) and (max-width: 425px) {
img.event-img {
    width: 21rem;
    left: 0rem;
    position: relative;
}
a#btn-2 {
    top: 1rem;
    position: relative;
}
}
@media (min-width: 321px) and (max-width: 375px) {
img.event-img {
    width: 25rem;
    left: 0rem;
    position: relative;
}
}